home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-04-27
|
247b
|
18 lines
#include <regexp.h>
#include <stdio.h>
void
regerror(const char *s)
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
/*
fprintf(stderr, "regexp(3): %s\n", s);
exit(1);
*/
return; /* let std. egrep handle errors */
#endif
/* NOTREACHED */
}